home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / gnuplot.lha / gnuplot / src / term.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-12  |  3.0 KB  |  88 lines

  1.  
  2. /*
  3.  * $Id: term.h%v 3.50 1993/07/09 05:35:24 woo Exp $
  4.  *
  5.  */
  6.  
  7. /* GNUPLOT - term.h */
  8. /*
  9.  * Copyright (C) 1986 - 1993   Thomas Williams, Colin Kelley
  10.  *
  11.  * Permission to use, copy, and distribute this software and its
  12.  * documentation for any purpose with or without fee is hereby granted, 
  13.  * provided that the above copyright notice appear in all copies and 
  14.  * that both that copyright notice and this permission notice appear 
  15.  * in supporting documentation.
  16.  *
  17.  * Permission to modify the software is granted, but not the right to
  18.  * distribute the modified code.  Modifications are to be distributed 
  19.  * as patches to released version.
  20.  *  
  21.  * This software is provided "as is" without express or implied warranty.
  22.  * 
  23.  *
  24.  * AUTHORS
  25.  * 
  26.  *   Original Software:
  27.  *     Thomas Williams,  Colin Kelley.
  28.  * 
  29.  *   Gnuplot 2.0 additions:
  30.  *       Russell Lang, Dave Kotz, John Campbell.
  31.  *
  32.  *   Gnuplot 3.0 additions:
  33.  *       Gershon Elber and many others.
  34.  * 
  35.  * There is a mailing list for gnuplot users. Note, however, that the
  36.  * newsgroup 
  37.  *    comp.graphics.gnuplot 
  38.  * is identical to the mailing list (they
  39.  * both carry the same set of messages). We prefer that you read the
  40.  * messages through that newsgroup, to subscribing to the mailing list.
  41.  * (If you can read that newsgroup, and are already on the mailing list,
  42.  * please send a message info-gnuplot-request@dartmouth.edu, asking to be
  43.  * removed from the mailing list.)
  44.  *
  45.  * The address for mailing to list members is
  46.  *       info-gnuplot@dartmouth.edu
  47.  * and for mailing administrative requests is 
  48.  *       info-gnuplot-request@dartmouth.edu
  49.  * The mailing list for bug reports is 
  50.  *       bug-gnuplot@dartmouth.edu
  51.  * The list of those interested in beta-test versions is
  52.  *       info-gnuplot-beta@dartmouth.edu
  53.  */
  54.  
  55. /*
  56.  * term.h: terminal support definitions
  57.  *   Edit this file depending on the set of terminals you wish to support.
  58.  * Comment out the terminal types that you don't want or don't have, and
  59.  * uncomment those that you want included. Be aware that some terminal 
  60.  * types (eg, SUN, UNIXPLOT) will require changes in the makefile 
  61.  * LIBS definition. 
  62.  */
  63.  
  64. /* These terminals can be used on any system */
  65. #define DXF        /* DXF format for use with AutoCad (Release 10.x) */
  66.  
  67. #define EEPIC        /* EEPIC-extended LaTeX driver, for EEPIC users */
  68. #define EMTEX        /* LATEX picture environment with EMTEX specials */
  69. #define GPIC        /* gpic for groff */
  70. #define LATEX        /* LATEX picture environment */
  71. #define MF            /* METAFONT driver */
  72. #define PBM            /* PBMPLUS portable bitmap */
  73. #define PCL            /* orignal HP LaserJet III */
  74. #define POSTSCRIPT    /* PostScript */
  75. #define PSLATEX        /* LaTeX picture environment with PostScript \specials */
  76. #define PSTRICKS    /* LaTeX picture environment with PSTricks macros */
  77. #define TEXDRAW         /* TeXDraw drawing package for LaTeX */
  78. #define TPIC        /* TPIC specials for TeX */
  79.  
  80. /* These are for Amiga only */
  81. #if defined(AMIGA_SC_6_1) || defined(AMIGA_AC_5)
  82. #define AMIGASCREEN    /* Amiga custom screen */
  83. #undef  AIFM
  84. #undef  DXF
  85. #undef  FIG
  86. #undef  MIF
  87. #endif
  88.